$(document).ready( function() {
	var checkBox = $("#student");
	checkBox.change( function() {
		if ( checkBox.is(":checked") ) {
			$("#student-extra").show("slow");
		} else {
			$("#student-extra").hide("slow");
		}
	});
});
