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

document.write('<form name="form" class=form>');
document.write('<select name="site" size=1 onChange="javascript:formHandler()">');
document.write('<option value="#">Pilot Services QuickLinks');
document.write('<option value="#">-------------------------------');
document.write('<option value="pilot_services_join.html">Join Atlantic Aerospace');
document.write('<option value="pirep.html">File A PIREP');
document.write('<option value="change.html">Change Your Pilot Record');
document.write('<option value="change.html">Apply For Leave');
document.write('<option value="http://www.atlanticskies.com/forum/index.html">Ricks Cafe (forum)');
document.write('<option value="#">-------------------------------');
document.write('<option value="hanger.html">Aircraft Hangar');
document.write('<option value="schedule.html">Flight Schedule');
document.write('<option value="http://www.atlanticskies.com/hbp_index.html">The Heartbreaker Project');
document.write('</select>');
document.write('</form>');