function showCidades(tipo_sel,pg_sel) {
	$('#cidade').html('');
	r='';
	$.get("inc/xml/getCidades.asp", {pg:pg_sel, t:tipo_sel, a:aleatorio() },function(xml){
		$('cidade', xml).each(function() {
			cid=$(this).text();
			link='imovel_pesq.asp?pg='+pg_sel+'&cid='+cid+'&t='+tipo_sel;
			r=r+('<li><a href="'+link+'">'+cid+'</a></li>');
		});
		$('total', xml).each(function() {
			total=$(this).text();
			if (total==1) {
				window.location = link;
			}
		});
		$('#cidades').html(r);
	});
}
