$(document).ready(function(){
 $("#2_style").change(function(){
        var opt = this.options[this.selectedIndex].value;
		$('#3_initial').val('');
		$('#4_monogram').val('');
		$('#5_text').val('');
		
		 if (opt == "single_initial") {

			$('#3_initialdiv').show();
			$('#4_monogramdiv').hide();
			$('#5_textdiv').hide();
			}
		 if (opt == "monogram") {

			$('#3_initialdiv').hide();
			$('#4_monogramdiv').show();
			$('#5_textdiv').hide();
			}
		 if (opt == "custom_text") {

			$('#3_initialdiv').hide();
			$('#4_monogramdiv').hide();
			$('#5_textdiv').show();
			}	
			                })
   
	    $('#2_style').trigger("change");
});