function populateCounty(inForm,selected) {
	var selectedArray = eval(selected + "Array");
	while (selectedArray.length < inForm.county.options.length) {
		inForm.county.options[(inForm.county.options.length - 1)] = null;
	}
	for (var i=0; i < selectedArray.length; i++) {
	eval("inForm.county.options[i]=" + "new Option" + selectedArray[i]);
	}
}
