$(document).ready(function(){

   $("#CEP").blur(function(){
	  

	   
	   var cep = $("#CEP").val();
	      $.ajax(
	               {

	
	                   url: 'ajaxCEP.php?cep='+cep+'&formato=query_string&x=0',
	                   type: 'GET',
	                   dataType: "html",
	                   error: function(){
	       			 alert(html("Erro ao carregar! Tente de novo!"));
	                 },
	                 success: function(html){

	                	 $("#rua").html(html);

	                 }
	               }    
	              );
	
				   $.ajax(
				               {


				                   url: 'ajaxCEP.php?cep='+cep+'&formato=query_string&x=1',
				                   type: 'GET',
				                   dataType: "html",
				                   error: function(){
				       			 alert(html("Erro ao carregar! Tente de novo!"));
				                 },
				                 success: function(html){

				                	 $("#cidade").html(html);

				                 }
				               }    
				              );


	   
    });

 });
