Got this idea from
http://www.codeproject.com/Articles/...-list-selectio
Code:
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function update(selection){
var choice = selection.selectedIndex;
document.getElementById("price").innerHTML="Pricing for County is " + selection.options[choice].value;
}
</script>
</head>
<body>
<p id="price" >Select county for pricing</p>
<form>
<select id="hi" onChange="update(this.form.hi);">
<option>Select County</option>
<option value="25.00">This Location</option>
<option value="50.00">That Location</option>
<option value="75.00">Some Location</option>
</select>
</form>
</body>
</html>