function formHandler(){
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>');
document.write('<option value="">GOOD GIRL ARCHIVES ...');
document.write('<option value="">-----------------');
document.write('<option value="http://goodgirlbookclubonline.com/ggpick/2006.html">2006 Good Girl Picks');
document.write('<option value="http://goodgirlbookclubonline.com/ggpick/2005.html">2005 Good Girl Picks');
document.write('<option value="http://goodgirlbookclubonline.com/ggpick/2004.html">2004 Good Girl Picks');
document.write('<option value="http://goodgirlbookclubonline.com/ggpick/2003.html">2003 Good Girl Picks');
document.write('<option value="http://goodgirlbookclubonline.com/ggpick/2002.html">2002 Good Girl Picks');
document.write('<option value="http://goodgirlbookclubonline.com/ggpick/2001.html">2001 Good Girl Picks');
document.write('</select>');
document.write('<input type=button value=Go! onClick="javascript:formHandler()">');
document.write('</form>');