 $(document).ready(function(){
 function setMaxLength(element_id, length){
        $(element_id).attr("maxlength", length);
        note = element_id + '_note';
        //$(note).html('(up to ' + length + ' characters)');
    };
	
	$("#1_design").bind("change", function(e){
		var opt = this.options[this.selectedIndex].value;
		$('#2_text1').val(''); //set value to none when onchange
        $('#3_text2').val(''); //set value to none when onchange
		if (opt == 'babys_breath'){
		setMaxLength('#2_text1', 3);
		$('#2_text1_note').html('(first initial, last initial, middle initial)');	
		}
		$('#3_text2div').hide();
		if (opt == 'bubble_gum') {
		setMaxLength('#2_text1', 3);
		$('#2_text1_note').html('(first initial, last initial, middle initial)');
		$('#3_text2div').hide();	
		};
		if (opt == 'chocolate_strawberry') {
		setMaxLength('#2_text1', 1);
		$('#2_text1_note').html('(up to 1 character)');
		$('#3_text2div').show();
		setMaxLength('#3_text2', 20);	
		$('#3_text2_note').html('(up to 20 characters)');
		};
		if (opt == 'hot_pink_hibicus') {
		setMaxLength('#2_text1', 1);
		$('#2_text1_note').html('(first initial, last initial, middle initial)');	
		$('#3_text2div').hide();	
		};
		if (opt == 'light_as_a_feather') {
		setMaxLength('#2_text1', 1);
		$('#2_text1_note').html('(up to 1 character)');
		$('#3_text2div').show();
		setMaxLength('#3_text2', 10);	
		$('#3_text2_note').html('(up to 10 characters)');
		};
		if (opt == 'morning_coffee') {
		setMaxLength('#2_text1', 15);
		$('#2_text1_note').html('(up to 15 character)');
		$('#3_text2div').hide();
		
		};
		if (opt == 'hot_pink_hibicus') {
		setMaxLength('#2_text1', 15);
		$('#2_text1_note').html('(first initial, last initial, middle initial)');	
		$('#3_text2div').hide();	
		};
		if (opt == 'mothers_love') {
		setMaxLength('#2_text1', 10);
		$('#2_text1_note').html('(up to 10 characters)');	
		$('#3_text2div').show();
		setMaxLength('#3_text2', 15);
		$('#3_text2_note').html('(up to 15 characters)');	
		};
		if (opt == 'paisley_swirl') {
		setMaxLength('#2_text1', 1);
		$('#2_text1_note').html('(up to 1 character)');	
		$('#3_text2div').show();
		setMaxLength('#3_text2', 12);
		$('#3_text2_note').html('(up to 12 characters)');	
		};
		if (opt == 'retro_flower') {
		setMaxLength('#2_text1', 1);
		$('#2_text1_note').html('(up to 1 character)');	
		$('#3_text2div').show();
		setMaxLength('#3_text2', 20);
		$('#3_text2_note').html('(up to 20 characters)');	
		};
		if (opt == 'romantic_vine') {
		setMaxLength('#2_text1', 10);
		$('#2_text1_note').html('(up to 10 characters)');	
		$('#3_text2div').show();
		setMaxLength('#3_text2', 10);
		$('#3_text2_note').html('(up to 10 characters)');	
		};
		if (opt == 'wheat_field') {
		setMaxLength('#2_text1', 10);
		$('#2_text1_note').html('(up to 10 characters)');	
		$('#3_text2div').hide();
		};
		if (opt == 'wild_flower') {
		setMaxLength('#2_text1', 10);
		$('#2_text1_note').html('(up to 10 characters)');	
		$('#3_text2div').hide();
		};
		});
	  $('#1_design').trigger("change");
});