var standard;
var pubsvc;
var expgs;
var nameres;
var rush;
var StateFee;
var total;
pubsvc=0;
expgs=0;nameres=0;StateFee=0;
rush=0;standard=199;
total=standard+pubsvc+expgs+nameres+rush+StateFee;
function ChargingOrder()
{if(document.getElementById('PUB_SVC').checked==true) 
{pubsvc=85;} else  {pubsvc=0;} if(document.getElementById('Good_Standing_Certificate').checked==true) {expgs=45;} 
else  {expgs=0;} if(document.getElementById('Name_Reservation').checked==true) {nameres=45;} else  {nameres=0;} 
if(document.getElementById('Same_Day').checked==true) {rush=50;} 
else  {rush=0;} 
if(document.getElementById('Filing_Fee').checked==true) {StateFee=95;document.getElementById('AZ_Cost').innerHTML = 'including State Registration and Expedited Processing Fees';} 
else  {StateFee=0;document.getElementById('AZ_Cost').innerHTML = '+ State Fees';} 
total=standard+pubsvc+expgs+nameres+rush+StateFee;
document.getElementById('total').innerHTML='$' + total;}

