function fncmostraCidades(obj) {
	combo1=document.getElementById('cidades');	
	for (x=0;x<combo1.length;x++){
		linha=combo1.options[x].value;
		document.getElementById(linha).style.display = "none";
	}
	//document.getElementById("000").style.display = "none";
	//document.pesquisa.cidades.value
	itemcombo=combo1.options[combo1.selectedIndex].value;
	obj2=document.getElementById(itemcombo);
	if (obj2){
		obj2.style.display = '';
	}
}