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.boucherandboucher.com/' ;	-mrl
  selecteditem = menuform.url.selectedIndex ;
  newurl = menuform.url.options[ selecteditem ].value ;
  if (newurl.length != 0) {
    // location.href = baseurl + newurl ; 	-mrl
    location.href = newurl ;
  }
}
document.writeln( '<form action="chgoto" method="get">' );
document.writeln( '<select name="url" onchange="menu_goto(this.form)">' );
document.writeln( '<option value="firm.shtml">Practice Areas</option>' );
document.writeln( '<option value="business.shtml">Business and Corporate Law</option>' );
document.writeln( '<option value="employment.shtml">Employment Law</option>' );
document.writeln( '<option value="realestate.shtml">Real Estate Law</option>' );
document.writeln( '<option value="probate.shtml">Probate, Estate and Elder Care</option>' );
document.writeln( '<option value="pi.shtml">Personal Injury and Wrongful Death</option>' );
document.writeln( '<option value="family.shtml">Family Law</option>' );
document.writeln( '<option value="divorce.shtml">Divorce</option>' );
document.writeln( '<option value="custody.shtml">Child Custody</option>' );
document.writeln( '<option value="juvenile.shtml">Juvenile Defense</option>' );
document.writeln( '<option value="consumer.shtml">Consumer Law</option>' );
document.writeln( '<option value="ovi.shtml">OVI, DUI and DWI Defense</option>' );
document.writeln( '<option value="traffic.shtml">Traffic Ticket Defense</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );

