	$(document).ready( function () {


		$('#type').each( function () {if ($(this).val()!='other') {$('#type2').attr("disabled", true).hide();}});

		$('#type').change(onChange);
		function onChange(){
			if ($('#type').val()=='other') {$('#type2').removeAttr("disabled").fadeIn('fast');}
			else                                   {$('#type2').attr("disabled", true).fadeOut('fast');}
		}

		$('#infosource').each( function () {if ($(this).val()!='other') {$('#infosource2').attr("disabled", true).hide();}});

		$('#infosource').change(onChange2);
		function onChange2(){
			if ($('#infosource').val()=='other') {$('#infosource2').removeAttr("disabled").fadeIn('fast');}
			else                                   {$('#infosource2').attr("disabled", true).fadeOut('fast');}
		}


	});