function filter(dropdown) {
	if (dropdown == 1) {
		$$('#course_type option').each(function(el) { el.disabled=''; });
		if ($F('learner_type')) {
			if ($F('learner_type').match('Young')) {
				$$('#course_type option').each(function(el) {
					if (!el.innerHTML.match('Young')) {
						el.disabled="disabled";
					}
				});
			} else {
				$$('#course_type option').each(function(el) {
					if (el.innerHTML.match('Young')) {
						el.disabled="disabled";
					}
				});
			}	
		}
	}	
}

Event.observe(window, 'load', function() { filter(1); });