
function gotoState(SelBox) {
  var i = SelBox.selectedIndex;
  var t = SelBox[i].value;
  var tx= SelBox[i].text;
  var s = '';
  if ( t.length > 0 )  {
    i = t.indexOf('?');
    if (i != -1) {
      s = t.substring(i);
      t = t.substr(0,i);
      if (i == 0) {
        t = 'nobest';
        s = '?'+tx;
      }
    }
    window.location.href = 'locations/' + t+'.htm'+s;
  }
}
