
/*
	'##############################################################################
	'#####
	'						CHECK SELECT VAL FUNCTION
	'	OVERVIEW  - This function will take a SelectBox object and check to see
	'				if one of its options has been checked
	'	
	'	PROTOTYPE - function checkSelectVal(objSelect)
	'	
	'   VARIABLE DEFINITIONS:
	'		Input  - 
	'				.objSelect = JS SelectBox object to check
	'		
	'		Output - 
	'	
	'	RETURNS   - False if no option has been selected, otherwise it returns 
	'				the value of the selected option
	'#####
	'##############################################################################
*/
function checkSelectVal(objSelect)
{
	if (objSelect.options[objSelect.selectedIndex].value == "")
		return false;
	else
		return objSelect.options[objSelect.selectedIndex].value;
}

