function buscacep(caminhoINC){
	
	cep = document.getElementById('txt_cep1').value;
	cep += document.getElementById('txt_cep2').value;
	

	$(function() {
		$.ajax({
		type: "GET",
		url: caminhoINC+"/buscacep.asp?cep="+cep,
		dataType: "html",
		contentType: "application/x-www-form-urlencoded; charset=UTF-8",
		success: function(xml) {
			$.xmlDOM(xml).find('resposta').each(function(){
				if($(this).attr('retorno')==1){
					document.getElementById('txt_endereco').value = $(this).attr('endereco');
					document.getElementById('txt_bairro').value = $(this).attr('bairro');
					document.getElementById('txt_cidade').value = $(this).attr('cidade');
					var sel = document.getElementById('estado');
					for (i=0; i<sel.options.length; i++) {
						if (sel.options[i].value == $(this).attr('estado')) {
							sel.selectedIndex = i;
						}
					}
				}else{
					window.alert($(this).attr('erro'));
				}
		   });
		}});
	});
}

