function checkOther(sel_box,other_input) {
	if(document.getElementById(sel_box).value == 'Other') {
		document.getElementById(other_input).disabled = false;
	} else {
		document.getElementById(other_input).disabled = true;
	}
}
