function carregaAlfabeto(est_id) {
	var ajax = openAjax();
	var recipiente = gE('estAlfabeto');
	var recipiente2= gE('estDestinos');
	ajax.open('GET', '/bib_ajax/destinos.php?function=1&est_id='+est_id, true); 
	ajax.onreadystatechange = function() {
		if (ajax.readyState == 4) {
			if (ajax.status == 200) {
				document.body.style.cursor = 'default';
				recipiente.innerHTML = ajax.responseText;
				recipiente2.innerHTML= "Selecione a primeira letra da cidade desejada.";
			}
		}
	}
	ajax.send(null);
}

function carregaDestinos(est_id,letra) {
	var ajax = openAjax();
	var recipiente= gE('estDestinos');
	ajax.open('GET', '/bib_ajax/destinos.php?function=2&est_id='+est_id+'&letra='+letra, true); 
	ajax.onreadystatechange = function() {
		if (ajax.readyState == 4) {
			if (ajax.status == 200) {
				document.body.style.cursor = 'default';
				recipiente.innerHTML = ajax.responseText;
			}
		}
	}
	ajax.send(null);
}

