function menu_goto_guffey( menuform )
{
  var baseurl = 'http://www.tulsabusiness.com/' ;
  selecteditem = menuform.url.selectedIndex ;
  newurl = menuform.url.options[ selecteditem ].value ;
  if (newurl.length != 0) {
    location.href = baseurl + newurl ;
  }
}
document.writeln( '<form action="chgoto" method="get">' );
document.writeln( '<select name="url" onchange="menu_goto_guffey(this.form)" class="inputTxt2" style="width: 200px">' );
document.writeln( '<option value="research.asp">select...</option>' );
document.writeln( '<option value="search_data.asp?dID=4">Building Permits - BA</option>' );
document.writeln( '<option value="search_data.asp?dID=5">Building Permits - City</option>' );
document.writeln( '<option value="search_data.asp?dID=6">Building Permits - County</option>' );
document.writeln( '<option value="search_data.asp?dID=7">Building Permits - Pools</option>' );
document.writeln( '<option value="search_data.asp?dID=30">Deeds</option>' );
document.writeln( '<option value="search_data.asp?dID=12">Foreclosures</option>' );
document.writeln( '<option value="search_data.asp?dID=25">Mortgages</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );
