function emailOther(theForm){

	show = document.getElementById('other_input');

	if (theForm.how.value=='Other'){

		show.style.display='inline';

		theForm.other_input.value='';}

	else{

		show.style.display='none';

		theForm.other_input.value='void';}
		
		
		
	show = document.getElementById('other_label');
	
	if (theForm.how.value=='Other'){

		show.style.display='inline';

		theForm.other_input.value='';}

	else{

		show.style.display='none';

		theForm.other_input.value='void';}
	

}