/**
 * @method verifySelect
 * Verify that a user has selected something from a drop down box.
 * @author gregs
 * @since 2010-02-08
 */
function verifySelect(input, errorMessage) {
	var value = input.options[input.selectedIndex].value;
	if (!value) {
		alert(errorMessage)
		return false;
	};
	
	return true;
};