$(document).ready(function() {

    var pc = getElementByID_Master("ProductColors");

    if (pc!= null) {
        var length = pc.options.length;

        if (length == 2)
            getElementByID_Master("ProductColors").selectedIndex = 1;

        if (aSKUPreviousCost[getElementByID_Master("ProductColors").selectedIndex][1] == "") {
            $('#price-sale').removeClass('price-sale');
        }
    }
})