function menu_goto( menuform )
{

  selecteditem = menuform.url.selectedIndex ;
  newurl = menuform.url.options[ selecteditem ].value ;
  if (newurl.length != 0) {
    location.href = newurl ;
  }
}
document.writeln( '<form action="chgoto" method="get">' );
document.writeln( '<select name="url" onchange="menu_goto(this.form)">' );
document.writeln( '<option value="/where/">Choose your region</option>' );
document.writeln( '<option value="/where/alberta.php">Alberta</option>' );
document.writeln( '<option value="/where/bc.php">British Columbia</option>' );
document.writeln( '<option value="/where/manitoba.php">Manitoba</option>' );
document.writeln( '<option value="/where/labrador.php">Nfld. &amp; Labrador</option>' );
document.writeln( '<option value="/where/nwt.php">NWT</option>' );
document.writeln( '<option value="/where/ontario.php">Ontario</option>' );
document.writeln( '<option value="/where/quebec.php">Quebec</option>' );
document.writeln( '<option value="/where/saskatchewan.php">Saskatchewan</option>' );
document.writeln( '<option value="/where/yukon.php">Yukon</option>' );

document.writeln( '</select>' );
document.writeln( '</form>' );