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;
}
}
}
}
}