		$(document).ready(function() {
			
			$("#find_out").change(function () {
				if ($(this).val() == '6')
				{
					$('#other').show();
				}
				else
				{
					$('#other').hide();
				}
			});
			
			if (DTACAPID == 5)
			{
				$('#comments-wrap').hide();
				$('#suggestion-wrap').hide();
				$('#story-video-wrap').hide();
				$('#image-wrap').show();
			}
			
	
			$("#nature_of_enquiry").change(function () {
													 
				$('#comments-wrap').hide();
				$('#suggestion-wrap').hide();
				$('#story-video-wrap').hide();
				$('#image-wrap').hide();

				if ($(this).val() == '1')
				{
					$('#comments-wrap').show();
				}
				
				if ($(this).val() == '2')
				{
					$('#suggestion-wrap').show();
				}

				if ($(this).val() == '4')
				{
					$('#story-video-wrap').show();
				}

				if ($(this).val() == '5')
				{
					$('#image-wrap').show();
				}

			});
	


		});



