
function Carrega(selObj){
	if (selObj.options[selObj.selectedIndex].value == 2) {
  document.getElementById("lista").innerHTML = '<select name="apartamento" id="apartamento"><option value=""></option><option value="Cobertura">Cobertura</option><option value="Apart House (térreo)">Apart House (térreo)</option></select>';
	} else {
		document.getElementById("lista").innerHTML = '';
	}
}

function Carrega2(selObj){
	if (selObj.options[selObj.selectedIndex].value == 2) {
  document.getElementById("lista2").innerHTML = '<select name="opcao2" id="opcao2"><option value="2">Anual</option><option value="3">Temporada</option></select>';
	} else {
		document.getElementById("lista2").innerHTML = '';
	}
}


function MenuTabelab(i) {
	
	if (document.getElementById('catb_'+i).value == "aberto") {
		document.getElementById('sessao_itensb'+i).style.display='none';
		document.getElementById('catb_'+i).value = "fechado";
	} else {
		document.getElementById('sessao_itensb'+i).style.display='block';
		document.getElementById('catb_'+i).value = "aberto";
	}
}
