function isOtherMeeting() {
	var box = document.getElementById( 'meetingList' );
	var meeting = box.options[box.selectedIndex].value;

	if (meeting == 'other') {
		showHide('other',true);
	} else { 
		showHide('other',false);
	}
}