
Any form you create that requires calculations is likely to require custom calculation scripts. The options you have available with preset calculation formulas are limited to simple multiplication and addition. Any other kind of calculation you need requires writing a script.
var f = this.getField("subtotal");
event.value = Math.round(f.value *
7.25)/100;

Tip: This script presumes you have another field on the page named: subtotal.