//Função habilitar/desabilitar o campo de entrada de outra cidade --------------------------------
function OutraCidade(obj, objOutra, strTR) {
  //Declarar variáveis
  var intSelecionado = obj.selectedIndex;

  //Sair se nenhuma cidade está selecionada
  if (intSelecionado == -1)
    return;

  if (obj.options[intSelecionado].value == "x") {
    document.all.item(strTR).style.display = "";

    objOutra.focus();
  }
  else {
    document.all.item(strTR).style.display = "none";

    objOutra.value = "";
  }
}
