hideForm = function () {
  if (document.all&&document.getElementById) {
    document.getElementById("topStateList").style.visibility="hidden";
  }
}

showForm = function () {
  if (document.all&&document.getElementById) {
    document.getElementById("topStateList").style.visibility="visible";
  }
}