<!--
function addToList(listField, newText, newValue) {
   if ( ( newValue == "" ) || ( newText == "" ) ) {
      alert("You cannot add blank values!");
   } else {
      var len = listField.length++; // Increase the size of list and return the size

      listField.options[len].value = newValue;
      listField.options[len].text = newText;
   } 
}

function selectOption(listField, opValue) {
      for (i=0;i<listField.length;i++)
			{
			  if (listField.options[i].value == opValue)
				{
				    listField.selectedIndex = i;
						break;
				}
				  
				
			}
}

-->