﻿function updatePrice(basePrice) {
    var options = $("input[name=options,checked=true]").each(function() {
        basePrice = basePrice + parseInt(this.value);
    });

    $('#paypalPrice')[0].value = basePrice;
    $('#totalPrice').html(basePrice);
    $('#totalPrice').formatCurrency();
}
