
function comm_direct_change(checked) {
	document.getElementById("OthersLabel").style.display = checked ? "none" : "block";
	document.getElementById("othersInput").style.display = checked ? "block" : "none";
}

