
$( function() {
	

    $( '#ajaxLoadAni' ).fadeOut( 'slow' );

	$( 'body' ).delegate( '#search_pro_type, #search_district', 'change', function() {							   
						   
        $('#search_location').fadeOut();

			$.post("index.php/search/get_location", {
			    pro_type: $('#search_pro_type').val(),
				district: $('#search_district').val(),
	    	}, function(response){

			     finishAjax('search_location', escape(response));
		    });
	});
	

	
	function finishAjax(id, response){

	  $('#'+id).html(unescape(response));
	  $('#'+id).fadeIn();
    } 
    
    
}); //end document ready



