function jump(element, fname){
	switch (fname){
   	case "where_to_go":
      	ss = "15";
         break;
   	case "where_to_eat":
      	ss = "16";
         break;
      case "where_to_stay":
      	ss = "17";
         break;
   }
	new_url = fname + ".php?section=5&subsection="+ss+"#" + element.value;
   location.href = new_url;
}