//////////////////////////////////////////////////////////
// Function to redirect to the County document selected.//
//////////////////////////////////////////////////////////

function formCounty(Countyform){
var URL = document.Countyform.county.options[document.Countyform.county.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=Countyform>');
document.write('<select name=county size=1 onChange=javascript:formCounty()>');
document.write('<option value="#COUNTIES">&lt;Please Select One&gt;</option>');
document.write('<option value="/documents/treasury/CountyGuidelines2009_293316_7.pdf ">County Guidelines for the 2009 Tax Year</option>');
document.write('<option value="/documents/treasury/CountyGuidelines2010_293314_7.pdf">County Guidelines for the 2010 Tax Year</option>');
document.write('<option value="/documents/treasury/CountyGuidelines2011_293317_7.pdf">County Guidelines for the 2011 Tax Year</option>');

// Add additional County Documents Here //

document.write('</select>');
document.write('</form>');

