OK, now how do you want to round, exactly? To round to two decimal points and to the nearest 100th, you could do something like:
// Custom calculation script
// Calculate value and round to nearest 100th
event.value = util.printf("%.2f", getField("input").value / 18);
If you want to round in some other way and can't figure it out, post again.