$(document).ready(function(){ 

	var greetings = {
		'Birthday'                     : 'Age',
		'Wedding Anniversary'          : 'Number of Years',
		'Wedding'                      : '?',
		'Condolence'                   : '?',
		'Get Well Card - Child'        : 'Serious Illness',
		'Get Well Card - Adult'        : 'Serious Illness',
		'Graduation'                   : 'High School/College/Advanced Degree',
		'Religious Milestone'          : 'What did the individul receive?',
		'Birth of Baby'                : '?',
		'Retirement'                   : 'Number of years in profession',
		'Eagle/Girl Scout Gold Award'  : '?'
		
	};

    $("#ContactGreetingType").change(function(){
		$('label[for=ContactGreetingMessage]').text(greetings[this.value]);
	});  
	$("#ContactGreetingType").trigger('change');
});