function formHandler(form)
{
	var URL = document.form.prod.options[document.form.prod.selectedIndex].value;
	window.location.href = URL;
}


document.write("<form name='form'>");
document.write("<select name='prod' class='tb' size='1' onChange='javascript:formHandler(this)'>");
document.write("<option>Select year for Past Issue");
document.write("<option value='default.htm'>2011");
document.write("<option value='2010.htm'>2010");
document.write("<option value='2009.htm'>2009");
document.write("<option value='2008.htm'>2008");
document.write("<option value='2007.htm'>2007");
document.write("<option value='2006.htm'>2006");


document.write("</select></form>");
