function menu_goto( menuform )
{
  // Generated by thesitewizard Navigation Menu Wizard 2.3.2
  // Visit http://www.thesitewizard.com/ to get your own
  // customized navigation menu FREE!
  var baseurl =  'http://www.spokanecityfire.com/' ;
  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="http://departments.firehouse.com/dept/Cheney2WA">Spokane County Fire District 3</option>' );
document.writeln( '<option value="http://www.scfd4.org/">Spokane County Fire District 4</option>' );
document.writeln( '<option value="http://www.scfd8.org/">Spokane County Fire District 8</option>' );
document.writeln( '<option value="http://www.scfd9.org/">Spokane County Fire District 9</option>' );
document.writeln( '<option value="http://www.scfd10.org/station3.html">Spokane County Fire District 10</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );

