function formHandler(form)
{
	var URL = document.form.prod.options[document.form.prod.selectedIndex].value;
	window.location.href = URL;
}
document.write("<table border='0' cellpadding='0' cellspacing='0' style='border-collapse: collapse' bordercolor='#111111' width='100%'>");
document.write("  <tr><form name='form'>");
document.write("    <td width='100%' align='right'>");
document.write("    <select size='1' name='prod' class='tb' onChange='javascript:formHandler(this)'>");
document.write("<option>Select the Period");
document.write("<option value='pre-1985.asp'>Pre 1985");
document.write("<option value='post-1985.asp'>Post 1985");
document.write("<option value='post-1990.asp'>Post 1990");
document.write("<option value='2005-tilldate.asp'>2005 Till Date");
document.write("</select></td></form>");
document.write("  </tr>");
document.write("</table>");