	
function checkOther(){

 if (document.getElementById('formBuilding').value == 'Other'){
 
 	document.getElementById('divOther').style.display = 'block';
	document.getElementById('formOther').value = '[Other Building/Location]*';
 } else {
 
 document.getElementById('divOther').style.display = 'none'
	document.getElementById('formOther').value = '[Other Building/Location]';
 }

}

