$(function(){
		   
	$("select[name=categoria]").change(function(){
										   
			beforeSend:$("select[name=tipo]").html('<option value="0">Aguarde carregando...</option>');	
			
			var categoria = $("select[name=categoria]").val();
			
			$.post("filtro/categoria.php",{categoria: categoria},function(pega_cat){
																		  
			complete:$("select[name=tipo]").html(pega_cat);
			
	
	
	$("select[name=tipo]").change(function(){
										   
			beforeSend:$("select[name=localidade]").html('<option value="0">Aguarde carregando...</option>');	
			
			var tipo = $("select[name=tipo]").val();
			
			$.post("filtro/tipo.php",{tipo: tipo},function(pega_tipo){
																		  
			complete:$("select[name=localidade]").html(pega_tipo);
			
			
	 $("select[name=localidade]").change(function(){
										   
			beforeSend:$("select[name=bairro]").html('<option value="0">Aguarde carregando...</option>');	
			
			var localidade = $("select[name=localidade]").val();
			
			$.post("filtro/local.php",{localidade: localidade},function(pega_localidade){
																		  
			complete:$("select[name=bairro]").html(pega_localidade);
			
				     
			
		     });
			
           });
			
		 });
			
      });
			
	});
			
  });
		   
})
