// JavaScript Document

function found(menuObj) {
	
	if(menuObj.options[menuObj.selectedIndex].value == 'other') {
		document.getElementById('otherText').style.display = 'block';
		document.getElementById('other').focus();
	}
	else {
		document.getElementById('otherText').style.display = 'none';
	}
}