function goThere() { 

   var d = document.catgs.category;

   if (d.options.selectedIndex == 0){
      return false;
   }

   document.location = "http://beef.unl.edu/byTopic/" + d.options[d.selectedIndex].value + ".shtml";
   return false;
}