Total from a checkbox
lest say for this the Bonus = 1 and Modifier = 2
with no box checked i should get 1
if i check Pro i get 1 should be 3
if i check EXP i get 4
// JavaScript Document
var x = this.getField("BONUS").value;
var y = this.getField("Modifier").value;
if (this.getField("PRO").value === "Yes") {
this.getField("Total").value === x+y; }
else
this.getField("Total").value = y;
if (this.getField("EXP").value === "Yes") {
this.getField("Total").value = x+x+y; }
else (
this.getField("T
