$(function(){

	$("#select_ajax").change(function(){
	
			
		$.ajax({ 
		 
			type: "POST",  
			url:"ajax/gamme.php",  
			data: "marque=" + $(this).val(),  
			//dataType: "text/html",
			cache:false,  
			success: function(html){    
						
							$("#type_ajax").html(html);     
							
						},  
  			error: function(){
  							
  							alert('Pas de r&eacute;sultats');
  						
  						}
  			
  		
  		}); 
  				

	});
	

});
