function showOtherField() {
	if (document.forms['link_to_us'].elements['category'][document.forms['link_to_us'].elements['category'].selectedIndex].value == 'other') {
		document.getElementById('link_form_other').style.display='block';
	} else {
		document.getElementById('link_form_other').style.display='none';
	}
}