function myDateFunction()
{
var date = new Date();
var today = date.getDay();
var daily = 10.99/7;
var days = [1, 7, 6, 5, 4, 3, 2];
// select the tag with the the id Amount
var x = document.getElementById('Amount');
// insert the value into the input
x.value = parseFloat(99 + 49 + (daily * days[today])+10.99).toFixed(2)
}
I have this so far and it's working...
But I need each of the amounts for : admin, start up and pro rata to be fed into their input fields on change - the change being the user's selection of this type of membership or another that doesn't have a start up fee ( so exactly the same but 0=start up fee)
This next step has got me stuck!
Many thanks for your help!