function getCidades( estado, alvo ) {

	$j.ajax({
		type: "GET",
		url: "scripts/geral.php",
		data: "act=1&estado="+estado,
		cache: false,
		beforeSend: function() {
			$j(alvo).empty();
			$j(alvo).html("<option value=\"\">Carregando dados desse estado...</option>");
		},
		success: function(result) {
			$j(alvo).empty();
			$j(alvo).attr("disabled", false);
			$j(alvo).html(result);
		}
	});

}
