$(function(){
  $("select[name=categoria_prod]").change(function(){
	  beforeSend:$("select[name=tipo_prod]").html('<option value="0">Aguarde Carregando...</option>');
	  
	  var tipoProd = $("select[name=categoria_prod]").val();
	  $.post("filtro/tipoProduto.php",{tipoProd: tipoProd},function(pega_tipo){
		  complete:$("select[name=tipo_prod]").html(pega_tipo);
	  
	      		 
			$("select[name=tipo_prod]").change(function(){
	      	beforeSend:$("select[name=cidade_prod]").html('<option value="0">Aguarde Carregando...</option>');
	  
	      	var cidadeProd = $("select[name=tipo_prod]").val();
	     	$.post("filtro/cidadeProd.php",{cidadeProd: cidadeProd},function(mostra_cidades){
		     complete:$("select[name=cidade_prod]").html(mostra_cidades);	 
			 
			 			 				
	        });
        });
	 });
  });	
})
