

/** 
* This function locates an element within an array and returns its index.
*/
function selectFieldIndexOf(selectField, element) {
	for (i=0; selectField.options.length > i; i++) 
		if (selectField.options[i].value == element) 
			return i;
}