$(document).ready(
  function(){
	
	$("#id_marca").change(
      function(){
	    $.post("carregarModelos.php", {
			   id_marca: $(this).val(),
			   tammax: 27
		       }, function(res){
			      $("#modelo").html(res); 
			   });
	  }
	);
	
  }
);