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="">More From Dog Law....');
document.write('<option value="http://www.thedogplace.org/Archives/HotNews/leg11.htm">Proposed Veterinary Bill');
document.write('<option value="http://www.thedogplace.org/Archives/HotNews/leg10.htm">Open Letter To The USDA');
document.write('<option value="http://www.thedogplace.org/Archives/HotNews/leg12.htm">Protect Us From The PPA!');
document.write('<option value="http://www.thedogplace.org/Archives/HotNews/leg9.htm">Important Anti-BSL News');
document.write('<option value="http://www.thedogplace.org/Archives/HotNews/leg3.htm">Home Invasion, Virginia Style');
document.write('</select>');
document.write('<input type=button value="Go!" onClick="javascript:formHandler()">');
document.write('</form>');
