function goto(form) { 
  var index=form.select.selectedIndex;
  if (form.select.options[index].value != "0") {
    location=form.select.options[index].value;
  };
};

function toggle_list(list_id) {
	$(list_id).toggle();
};