jQuery.validator.setDefaults({
    errorElement: 'span'
});

function cvcValidate()
{
    if ($('#cvc').valid())
    {
        var rawVolume = $('#width').val() * $('#height').val() * $('#length').val();
        
        $('#volume').html(Math.round((rawVolume / 166) * 1000) / 1000);
        $('#cft').html(Math.round((rawVolume / 1166) * 1000) / 1000);
    }
}
