function getCidades(destino, uf, select) {
	clearSelect(destino, 1);

	if (!uf)
		return;

	var url = 'xml/get-cidades.php?uf=' + uf;
	XHRPopulate(destino, url, select)
}

function getBairros(destino, cidade, select) {
	clearSelect(destino, 1);

	if (!cidade)
		return;

	var url = 'xml/get-bairros.php?cidade=' + cidade;
	XHRPopulate(destino, url, select)
}