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 = 'locations/tips/blanktip';
        i = 0;
        while (tx.substr(i,1)=='-') ++i;
        s = '?'+tx.substring(i);
      }
    }
    window.location.href = t+'.htm'+s;
  }
}