$(document).ready(function(){
	
	$("#5_style").bind("change", function(e){
		$('#6_initial').val(''); //set value to none when onchange
        $('#7_monogram').val(''); //set value to none when onchange
        $('#8_text1').val(''); //set value to none when onchange
        $('#9_text2').val(''); //set value to none when onchange
        var opt = this.options[this.selectedIndex].value;
		
		if(opt == 'single_initial'){
		 $('#6_initialdiv').show();
		 $('#7_monogramdiv').hide();
		 $('#8_text1div').hide();
		 $('#9_text2div').hide();
		}
		if(opt == '3_letter_monogram'){
		 $('#6_initialdiv').hide();
		 $('#7_monogramdiv').show();
		 $('#8_text1div').hide();
		 $('#9_text2div').hide();
		}
		if(opt == 'text'){
		 $('#6_initialdiv').hide();
		 $('#7_monogramdiv').hide();
		 $('#8_text1div').show();
		 $('#9_text2div').show();
		}
		
		});
		 $('#5_style').trigger("change");
});
