$(function(){
  $("select[name=categoriaVcl]").change(function(){
	  beforeSend:$("select[name=marcaVcl]").html('<option value="0">Aguarde Carregando...</option>');
	  
	  var marcaVeiculo = $("select[name=categoriaVcl]").val();
	  $.post("filtro/marcaVeiculo.php",{marcaVeiculo: marcaVeiculo},function(pega_marca){
		  complete:$("select[name=marcaVcl]").html(pega_marca);
	  
	      $("select[name=marcaVcl]").change(function(){
	      beforeSend:$("select[name=modeloVcl]").html('<option value="0">Aguarde Carregando...</option>');

	      var modeloVeiculo = $("select[name=marcaVcl]").val();
	      $.post("filtro/modeloVeiculo.php", { modeloVeiculo: modeloVeiculo }, function (pega_modelo) {
		     complete:$("select[name=modeloVcl]").html(pega_modelo);
			 
				$("select[name=modeloVcl]").change(function(){
	      		beforeSend:$("select[name=anoVcl]").html('<option value="0">Aguarde Carregando...</option>');
	
	      		var anoVeiculo = $("select[name=anoVcl]").val();
	      			$.post("filtro/anoVeiculo.php", { anoVeiculo: anoVeiculo }, function (pega_ano) {
		     			complete:$("select[name=anoVcl]").html(pega_ano);	
					});
			 	});
	        });
        });
	 });
  });	
})
