$(document).ready(function(){

		$("#ccomment").hide();

		/* Fade In/Out 'Other' Field in Repair Form */
		$("#other-radio").click(function(){
			$("#ccomment").fadeIn('slow');
		});
		
		$(".reason-radio").click(function(){
			$("#ccomment").fadeOut('slow', function() {
				$("#ccomment").val('');
			});
		});

});