function showOther(val){
	if(document.getElementById('other_option') && document.getElementById('other_value')){
		var oth = document.getElementById('other_value');
		if(val == 'other'){
			oth.style.display='';
		} else {
			oth.style.display='none';
		}
	}
}