$(function(){
  $("select[name=negocio]").change(function(){
	  beforeSend:$("select[name=tipo]").html('<option value="0">Aguarde Carregando...</option>');	   
	  var tipoImovel = $("select[name=negocio]").val();
	  $.post("filtro/tipoImovel.php",{tipoImovel: tipoImovel},function(mostra_tipo){
		  complete:$("select[name=tipo]").html(mostra_tipo);
	  
	   $("select[name=tipo]").change(function(){
	    beforeSend:$("select[name=cidade]").html('<option value="0">Aguarde Carregando...</option>');	  
	  
	  var cidadeImovel = $("select[name=tipo]").val();
	  $.post("filtro/cidadeImovel.php",{cidadeImovel: cidadeImovel},function(mostra_cidades){
		  complete:$("select[name=cidade]").html(mostra_cidades);
	  
	      $("select[name=cidade]").change(function(){
	      beforeSend:$("select[name=bairro]").html('<option value="0">Aguarde Carregando...</option>');
	  
	      var bairroImovel = $("select[name=cidade]").val();
	      $.post("filtro/bairroImovel.php",{bairroImovel: bairroImovel},function(mostra_bairros){
		     complete:$("select[name=bairro]").html(mostra_bairros);
		  });
		  });	 		
	      });
        });
	 });
  });	
})
