$(function(){
  $("select[name=categoria_emp]").change(function(){
	  beforeSend:$("select[name=tipo_emp]").html('<option value="0">Aguarde Carregando...</option>');
	  
	  var tipoEmp = $("select[name=categoria_emp]").val();
	  $.post("filtro/tipoEmprego.php",{tipoEmp: tipoEmp},function(pega_tipo){
		  complete:$("select[name=tipo_emp]").html(pega_tipo);
	  
	      		 
			$("select[name=tipo_emp]").change(function(){
	      	beforeSend:$("select[name=cidade_emp]").html('<option value="0">Aguarde Carregando...</option>');
	  
	      	var cidadeEmp = $("select[name=tipo_emp]").val();
	     	$.post("filtro/cidadeEmprego.php",{cidadeEmp: cidadeEmp},function(mostra_cidades){
		     complete:$("select[name=cidade_emp]").html(mostra_cidades);	 
			 
			 			 				
	        });
        });
	 });
  });	
})
