
      $().ready(function() {
			
			$("#carregando").hide();
			
			//$('#estados').attr("disabled", true);
			
			$('#especializadaCidade').attr("disabled", true); 
			
			$('#convenioCidade').attr("disabled", true); 
			
			$('#btEnviar').attr("disabled", true);
			
			
			$("#resultadoPesquisa").hide();

      		
			
			$("select[@name=uf]").change(function()
			{	
				$('#btEnviar').attr("disabled", true);
				 $('#convenioCidade').attr("disabled", false); 
     			 
				 $('select[@name=convenioCidade]').html('<option value="sda">Carregando Cidade...</option>');
				
				 $("#carregando").ajaxStart(function(){	$("#carregando").show(); });
					
				 $("#carregando").ajaxStop(function() {	$("#carregando").hide(); });

      			 $.post('../aplicativos/convdesc/WEB_INF/buscaCity.php',{ uf : $(this).val() },function(resposta)
				 {
      				$('select[@name=convenioCidade]').html(resposta);
     			 }

    			 );

     		 });
			
			$("select[@name=convenioCidade]").change(function()
			{	
				$('#btEnviar').attr("disabled", false);
				 $('#especializadaCidade').attr("disabled", false); 
     			 
				 $('select[@name=especializadaCidade]').html('<option value="sda">Carregando Modalidade...</option>');
				
				 $("#carregando").ajaxStart(function(){	$("#carregando").show(); });
					
				 $("#carregando").ajaxStop(function() {	$("#carregando").hide(); });

      			 $.post('../aplicativos/convdesc/WEB_INF/buscaMod.php',{ convenioCidade : $("#convenioCidade").val(),uf : $("#uf").val() },function(resposta)
				 {
      				$('select[@name=especializadaCidade]').html(resposta);
     			 }

    			 );

     		 });
			
			
			$("#btEnviar").click(function()
			{
				$("#resultadoPesquisa").fadeIn("normal");	
				
                $.post('../aplicativos/convdesc/WEB_INF/resultadoBusca.php',{ convenioCidade : $("#convenioCidade").val(),uf : $("#uf").val(), especializadaCidade: $("#especializadaCidade").val() },function(resultadoBusca)
				 {
      				$('#resultadoPesquisa').html(resultadoBusca);
     			 }

    			 );
				
				
			});

      });

