// JavaScript Document

function CheckBox()
{
	check = document.getElementById("check");
	box = document.getElementById("other");

	if (check.checked == false)
	{
		box.style.display = "block";	
	}
}