﻿
replaceDropDownList = function(initSectionTitle, initSizeTitle) {
    // Custom Dropdown
    $(".select").jgdDropdown();
    $("select.type").jgdDropdown({
        callback: function (obj, val) { ChangeSection(val); },
        clsLIExpand: false,
        initTitle: initSectionTitle
    });
    $("select.size").jgdDropdown({
        clsLIExpand: false,
        initTitle: initSizeTitle
    });
}


function textCounter(field, maxlimit) {
    if (field.value.length > maxlimit) {
        field.value = field.value.substring(0, maxlimit);
        alert('Inclusions text cannot be longer than ' + maxlimit + ' characters. Your inclusions text have been trimmed down to meet the text limit.');
    }
}

