//jumpTo
//takes option value and jumps user to that page

function jumpTo(form){
  var URL = document.form.partList.options[document.form.partList.selectedIndex].value;
  if (URL != 0){
    window.location.href = URL;
  }
}