function get_listings(form) 
   {
   var myindex=form.get_listings.selectedIndex;
   if (myindex>=1)
      {window.location=form.get_listings.options[myindex].value;}
   else
      {alert("You must SELECT a Price Range item first.");}
   }
