/* This script and many more are available free online at
The JavaScript Source :: http://javascript.internet.com
Created by: Francis Cocharrua :: http://scripts.franciscocharrua.com/ */

function Select_Value_Set(SelectName, Value) {
  eval('SelectObject = document.' + SelectName + ';');
  for(index = 0; index < SelectObject.length; index++) {
	if(SelectObject[index].value == Value){
     SelectObject.selectedIndex = index;
	}
   }
}
