$(document).ready(function() {
	$("#othercb").click(function() { 
		if ($('#othercb:checked').val() != undefined) { 
			$('#other').show();
		} else {
			$('#other').hide();
		}
	});
});

