$(function(){
  $("select[name=cate_serv]").change(function(){
	  beforeSend:$("select[name=area]").html('<option value="0">Aguarde Carregando...</option>');
	  var areaServ = $("select[name=cate_serv]").val();
	  $.post("filtro/areaServ.php",{areaServ: areaServ},function(pega_area){
		  complete:$("select[name=area_serv]").html(pega_area);
	  
	      $("select[name=area_serv]").change(function(){
	      beforeSend:$("select[name=tipo_serv]").html('<option value="0">Aguarde Carregando...</option>');
	      var tipoServ = $("select[name=area_serv]").val();
	      $.post("filtro/tipoServ.php",{tipoServ: tipoServ},function(pega_tipo){
		     complete:$("select[name=tipo_serv]").html(pega_tipo);
			 
			$("select[name=tipo_serv]").change(function(){
	      	beforeSend:$("select[name=cidade_serv]").html('<option value="0">Aguarde Carregando...</option>');
	      	var cidadeServ = $("select[name=tipo_serv]").val();
	     	$.post("filtro/cidadeServ.php",{cidadeServ: cidadeServ},function(mostra_cidades){
		     complete:$("select[name=cidade_serv]").html(mostra_cidades);	 
			 
			 
			 	});
		        });			
	        });
        });
	 });
  });	
})
