function formHandler(form){
var URL = document.form.site.options[document.form.site.selectedIndex].value;
window.location.href = URL;
}

document.write('<form name="form">');
document.write('<select name="site" size=1 onChange="javascript:formHandler()"');

document.write('<option value="">');
document.write('<option value="" selected>SELECT LESSON');


document.write('<option value="">');
document.write('<option value="a-rent-apartment.htm">Apartment Rentals');
document.write('<option value="a-breakfast.htm">Breakfast');
document.write('<option value="a-cellphones.htm">Cellphones');
document.write('<option value="a-fashion.htm">Clothing');
document.write('<option value="a-dental-care.htm">Dental Care');
document.write('<option value="a-driver-education.htm">Driver`s Education');
document.write('<option value="a-exercise.htm">Exercise');
document.write('<option value="a-family.htm">Family Relationships');
document.write('<option value="a-lunch.htm">Lunch');
document.write('<option value="a-job-hunting.htm">Job Hunting');
document.write('<option value="a-movie-rental.htm">Movie Rental');
document.write('<option value="a-online-degree.htm">Online Classes');
document.write('<option value="a-online-shopping.htm">Online Shopping');
document.write('<option value="a-restaurants.htm">Restaurants');
document.write('<option value="a-studyabroad.htm">Study Abroad');
document.write('<option value="a-train-ticket.htm">Train Tickets');



document.write('<option value="">');
document.write('<option value="index.htm">HOME');

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