function oldStyle(thisForm)
{
if(thisForm.DIST.options[0].selected)
thisForm.countyId.value = "3";
else
thisForm.countyId.value = "";
return true;
}
		
function setMapImage(val, setFormSelect) {
if (setFormSelect) {
with (document.forms[0].elements['DIST']) {
for (var i = 0; i < options.length; i++) {
if (options[i].value == val) {
selectedIndex = i;
break;
}
}
}
}
}
