
/////////////////////////////////////////////////////////////////////
// Function to redirect to the Township and City document selected.//
/////////////////////////////////////////////////////////////////////

function formTownship(form){
var URL = document.form.twp.options[document.form.twp.selectedIndex].value;
window.location.href = URL;
}

/////////////////////////////////////////////////////////////////////////////////////
// Begin HTML: was placed in JS to avoid going over the CMA Title character limits.//
/////////////////////////////////////////////////////////////////////////////////////

document.write('<form name=form>');
document.write('<select name=twp size=1 onChange=javascript:formTownship()>');
document.write('<option value="#CERTIFICATION">&lt;Please Select One&gt;</option>');
document.write('<option value="/documents/treasury/Townships-Cities2009_293318_7.pdf">Townships & Cities Guidelines for the 2009 Tax Year</option>');
document.write('<option value="/documents/treasury/Townships-Cities2010_293319_7.pdf">Townships & Cities Guidelines for the 2010 Tax Year</option>');
document.write('<option value="/documents/treasury/Townships-Cities2011_293320_7.pdf ">Townships & Cities Guidelines for the 2011 Tax Year</option>');


// Add additional Township and City Documents Here//

document.write('</select>');
document.write('</form>');

