diff --git a/ta_cola.html b/ta_cola.html
index 5b49e4f..d52bac6 100644
--- a/ta_cola.html
+++ b/ta_cola.html
@@ -305,7 +305,7 @@
select3.add(opt);
var opt = document.createElement('option');
opt.value = [1500, 1143];
- opt.text = 'Computational Tools for Climate Science';
+ opt.text = 'NeuroAI';
select3.add(opt);
//document.querySelector(".js-Selector").value = "Europe/Brussels";
@@ -316,7 +316,7 @@
var lead_ta = course[0];
var ta = course[1];
- theStr = (country * lead_ta) + '/' + (country * ta) + ' USD' + ' (LeadTA/TA)'
+ theStr = Math.round(country * lead_ta) + ' USD' + ' / ' + Math.round(country * ta) + ' USD' + ' -- (LeadTA/TA)'
document.getElementById('costs').innerHTML = theStr;
}