function formHandler(){
var URL = document.form.site.options[document.form.site.selectedIndex].value;
if (document.form.site.selectedIndex != 0)
	window.location.href = URL;
}
document.write('<table border="0" width="100%"><tr><td align="center" valign="middle"><BR>');
document.write('<form name="form">');
document.write('<select name="site" size=1 onChange="javascript:formHandler()">');
document.write('<option value="">Other FIDM Links... </option>');
document.write('<option value="http://www.fidm.com/about/index.html">FIDM At A Glance</option>');
document.write('<option value="http://www.fidm.edu/Academic/Tuition/financialaid.html">Affording College</option>');
document.write('<option value="http://www.fidm.com/common/academicsmain.html">FIDM Majors</option>');
document.write('<option value="http://www.fidm.com/resources/career-center/">Student Career Center</option>');
document.write('<option value="http://www.fidm.com/about/faq/">FIDM FAQ</option>');
document.write('</select>');
//document.write('<input type=button value="Go!" onClick="javascript:formHandler()">');
document.write('</form>');
document.write('</td></tr></table>');