// JavaScript Document

function checkOther(){
	hideOtherBox();

	if(document.form1.findOut.value == 'other'){
		document.form1.other.style.display = 'block'
	}

}

function hideOtherBox()
{
	document.form1.other.style.display = 'none'
}


