$(document).ready(function(){ 
        $(".mullotSearchButton").click(function(){

		$('#editionZone').html('');
		$("#editionZone").empty().html('<center><img style="margin-top:50px;" src="../zwook/fr/accueil/zwo_info/skins/mullotaccueil/ajax-loader.gif" / ></center>');
	

            $.ajax({
                url: 'http://217.16.9.211/garagemullot/recherche/recherche.php',
                data: 
				{
					urlRecherche: $("#urlRecherche").val(),
                                        typeVehicule: $("#typeVehicule").val(),
					cutilitaire: $("#cutilitaire").val(),					
					cpl: $("#cpl").val()									
				},
                dataType: 'jsonp',
                jsonp: 'callback',
                jsonpCallback: 'jsonpCallback',
                success: function(data){

}
            });
        });
 
   });
 
 
    function jsonpCallback(data)
	{	
		var text = data.result;
		$('#editionZone').html(text);
	}
