var txtfee;
function addval(){
    var txtara = document.getElementById("Personalization");
    if(txtara.value != ""){
        txtara.value += "(+$" + txtfee + ")";
    }
}
function setupfee(){
    var qtyinpt = document.getElementById("suf");
    if(qtyinpt){
        qtyinpt.value = "1";
    }
}
function removefee(){
    var qtyinpt2 = document.getElementById("suf");
    if(qtyinpt2){
        qtyinpt2.value = "0";
    }
}
