function reverseLookup(theCombo, theValue){
		for(var i=0; i<theCombo.options.length; i++)
		{
			if(theCombo.options[i].value == theValue)
			{
				theCombo.options[i].selected = true;
				return;
			}
		}
	}
