function MostraCombo()
{
	chave = document.getElementById("chave");
	chave.style.visibility = "visible";
}

function EscondeCombo()
{
	chave = document.getElementById("chave");
	chave.style.visibility = "hidden";
}


