var standard;
var expgs;
var rush;
var StateFee;
var total;
pubsvc=0;
expgs=0;nameres=0;StateFee=0;
rush=0;standard=235;
total=standard+expgs+rush+StateFee;
function ChargingOrder()
{ if(document.getElementById('Good_Standing_Certificate').checked==true) {expgs=20;} 
else  {expgs=0;} if(document.getElementById('Same_Day').checked==true) {rush=40;} 
else  {rush=0;} 
if(document.getElementById('Filing_Fee').checked==true) {StateFee=115;document.getElementById('CAL_Cost').innerHTML = 'including State Filing Fees &amp; Special Handling Fees assessed by the Secretary of State';} 
else  {StateFee=0;document.getElementById('CAL_Cost').innerHTML = '+ State Fees';} 
total=standard+expgs+rush+StateFee;
document.getElementById('total').innerHTML='$' + total;}

