$(function() {
	$('#referral').change(function() {
		if ($(this).val() == 'Other') {
			$('#other_list').show();
		} else {
			$('#other_list').hide();
		}
	}).change();
});