function menu_goto( menuform )
{
  // Generated by thesitewizard Navigation Menu Wizard 2.3.1
  // Visit http://www.thesitewizard.com/ to get your own
  // customized navigation menu FREE!
  var baseurl = 'http://web.dekalb.k12tn.net/' ;
  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(this.form)">' );
document.writeln( '<option value="">School Databases</option>' );
document.writeln( '<option value="absentrecap/login.asp">Teacher Attendance</option>' );
document.writeln( '<option value="busapp/login.asp">Transportation</option>' );
document.writeln( '<option value="subapp/login.asp">Substitute Teacher</option>' );
document.writeln( '<option value="boecal/login.asp">Staff Event</option>' );
document.writeln( '<option value="Ticket/login.asp">Tech Request</option>' );
document.writeln( '<option value="Discipline/login.asp">Discipline Log</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );