window.onload = init;

var JetA = /*Edit the current Price here*/ "$3.85";
var Avgas = /*Edit the current Price here*/"$4.66";

function init(){
     document.getElementById("fuelone").innerHTML= JetA;
     document.getElementById("fueltwo").innerHTML= Avgas;
}

