
  function navigateTo(selectBox) {
   var url = selectBox.options[selectBox.selectedIndex].value
   if (url != 'refresh') { document.location.href = url; }
   if (url == 'refresh') { document.location.href = '/'; } }

