/*
	@title 	Form jquery
	@author Mike Bailey
	@url	http://creativehappy.com
*/
$(document).ready(function(){
	// load prices
	get_prices();
	// on Change
	$(".ajax_call").change(function() {
		get_prices();
	});
	// on Change end
	// date picker
	$('#datepick').datepicker( { dateFormat: 'dd/mm/yy' } );
});

// Get quote prices
function get_prices()
{
	// Param Data
	var param_one = $("#local_auth").val();
	var param_two = $("#type_job").val();
	// Ajax Call
	$.ajax({
		type: "POST",
		url: "ajax.php",
		data: "param_one=" + param_one + "&param_two=" + param_two,
		success: function(html){
		
		$("#price_input").val(html);
		}
 	});
		// Ajax End	
}