$(function(){
  $("select[name=categoria]").change(function(){
	  beforeSend:$("select[name=tipo]").html('<option value="0">Aguarde Carregando...</option>');
	  
	  var tipoAgro = $("select[name=categoria]").val();
	  $.post("filtro/tipoAgro.php",{tipoAgro: tipoAgro},function(pega_tipo){
		  complete:$("select[name=tipo]").html(pega_tipo);
	  
	      
			 
			$("select[name=tipo]").change(function(){
	      	beforeSend:$("select[name=cidade]").html('<option value="0">Aguarde Carregando...</option>');
	  
	      	var cidadeAgro = $("select[name=tipo]").val();
	     	$.post("filtro/cidadeServ.php",{cidadeAgro: cidadeAgro},function(mostra_cidades){
		     complete:$("select[name=cidade]").html(mostra_cidades);	 
			 
			 			 				
	        });
        });
	 });
  });	
})
