$(document).ready(function(){ $('#formDiscountPriceValue').text(getDiscountPrice() + getCurrency()); $('#option1').append(getDiscountPrice() + getCurrency()); }) function getRegularPrice() { return regularPrice; } function getDiscountPrice(){ return discountPrice; } function getCurrency() { return currency; }