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="">Choose a chapter</option>' );
document.writeln( '<option value="http://www.cpawsbc.org">British Columbia</option>' );
document.writeln( '<option value="http://www.cpawsnwt.org">NWT</option>' );
document.writeln( '<option value="http://www.cpawsyukon.org/">Yukon</option>' );
document.writeln( '<option value="http://www.cpawsnab.org/">Northern Alberta</option>' );
document.writeln( '<option value="http://www.cpawscalgary.org/">Southern Alberta</option>' );
document.writeln( '<option value="http://www.cpaws-sask.org/">Saskatchewan</option>' );
document.writeln( '<option value="http://www.cpawsmb.org/">Manitoba</option>' );
document.writeln( '<option value="http://www.wildlandsleague.org/">Wildlands League</option>' );
document.writeln( '<option value="http://www.cpaws-ov-vo.org/">Ottawa Valley</option>' );
document.writeln( '<option value="http://www.snapqc.org">Quebec</option>' );
document.writeln( '<option value="http://www.cpawsnb.org/">New Brunswick</option>' );
document.writeln( '<option value="http://www.cpawsns.org/">Nova Scotia</option>' );
document.writeln( '<option value="http://www.cpawsnl.org">Nfld and Labrador</option>' );

document.writeln( '</select>' );
document.writeln( '</form>' );