$(document).ready(function(){

    $("#design").bind("change", function(){
        var style = $('#design').val();
        $('#5_text_note').hide();
        if (style == "initials") {
            $("#5_text_label").html('Initials');
            $('#5_text_note').hide();
            
        }
        if (style == "monogram") {
            $("#5_text_label").html('3-letter Monogram');
            $('#5_text_note').show();
        }
        if (style == "name") {
            $("#5_text_label").html('Name');
            $('#5_text_note').hide();
        }
        $("#country").bind("change", function(){
            var zipper = $('#country').val();
            
            if (zipper == "no") {
                $('#7_zipdesigndiv').hide();
                $('#8_zipcolordiv').hide();
            }
            if (zipper == "yes") {
                $('#7_zipdesigndiv').show();
                $('#8_zipcolordiv').show();
            }
        });
    });
    $('#design').trigger("change");
	$('#country').trigger("change");
});
