$(document).ready(function() {
    var langDefault = $('#langDefault').val();
    $('#calc_frete_btn').click(function() {
        cdServico = $('#cdServico').val();
        cep = $('#cep').val();
        peso = $('#peso').val();
        if (cdServico == '' || cep == '')
            alert ((langDefault == 'en-US' ? 'Please, select the "Service" and fill the Zip Code.' :
                                             'Por favor, selecione o "Serviço" e preencha o CEP.'));
        else {
            $('#frete').html((langDefault == 'en-US' ? 'Wait...' :
                                                       'Aguarde...'));
            $.post('Controllers/Produtos_CartC.php', {
                cdServico: cdServico,
                cep: cep,
                peso: peso,
                funcao: 'calcFrete'
            },
            function(valor){
                $('#frete').html(valor);
            }
            );
        }
    })
})
