diff --git a/cola.html b/cola.html index ab0124e..fa602d3 100644 --- a/cola.html +++ b/cola.html @@ -358,7 +358,7 @@
Cost adjustment by location
var fund = document.getElementById('fund').value var course = document.getElementById('course').value - theStr = (country * course * (0.5 + 0.5*fund) + country * course * 0.574 / 0.426 * job * fund) + ' USD' + theStr = Math.Floor(country * course * (0.5 + 0.5*fund) + country * course * 0.574 / 0.426 * job * fund) + ' USD' document.getElementById('costs').innerHTML = theStr; }