$(document).ready(function() {
		$('.form-disabled').attr('disabled', false);

		$('div[name=areyou]').change(function() {
				if($('input:checked[name=areyouradio]').val() === "Individual or Family")
				{
						$('.form-disableme').attr('disabled', true);	

						// check if a disabled element is selected, if it is, then reset the list
						if($('select[name=contact-about] option:selected').attr('disabled') == true)
						{
							$('select[name=contact-about] option').each(function() { $(this).attr('selected', false) });
							$('select[name=contact-about] option[value=unselected]').attr('selected', true);
						}

					  // check if a disabled element is selected, if it is, then reset the list
						if($('select[name=contact-about2] option:selected').attr('disabled') == true)
						{
							$('select[name=contact-about2] option').each(function() { $(this).attr('selected', false) });
							$('select[name=contact-about2] option[value=unselected]').attr('selected', true);
						}
				}
				else
				{
						$('.form-disableme').attr('disabled', false);	
				}
		});
});

