$(
	function(){
		
		$('input[type=radio]').each( function(){
			if( $(this).attr('checked') ){
				if( $(this).val() == 'ご質問' )
					$('#form_date').hide();
			}
		} );
		
		
		$( 'input[type=radio]' ).click(function(){
			if( $(this).val() == 'ご質問' )
				$('#form_date').hide();
			else
				$('#form_date').show();
		});
	}
);

