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

document.write('');
document.write('<select name="site"  onChange="if (options[selectedIndex].value) { location = options[selectedIndex].value}" style="background-color:#ffffff; border-style:1px; font-weight:bold; font-size: 12; color: #0099CC; font-family: arial, helvetica, verdana">');
document.write('<option value="">Menu Selections');
document.write('<option value="">.........................................');
document.write('<option value="donate.html">Donate Now');
document.write('<option value="services.html">Client Services');
document.write('<option value="sufficiency.html">Self-Sufficiency Project');
document.write('<option value="press.html">Press');
document.write('<option value="contact.html">Contact');
document.write('<option value="">.........................................');
document.write('<option value="index.html">Home');
document.write('</select>');
//document.write('<input type=button value="Go!" onClick="javascript:formHandler()">');
document.write('');