View Single Post
Old 03-11-2013, 11:21 PM   PM User | #10
sunfighter
Senior Coder

 
Join Date: Jan 2011
Location: Missouri
Posts: 2,498
Thanks: 18
Thanked 362 Times in 361 Posts
sunfighter is on a distinguished road
Use this esthera:
Code:
<script type="text/javascript">
x = document.getElementById("attop38").options.length;
for(y=0; y<x; y++){
	if(document.getElementById("attop38").options[y].value == '1993')
		document.getElementById("attop38").options[y].selected = true;
}
</script>
sunfighter is offline   Reply With Quote