Can anybody suggest why the following function isn't working? addItem doesn't seem to accept "i" as an argument.function dropdownRange(dropdown,start,end,increment) {for (var i = start; i < end; i+=increment) { dropdown.addItem(i);}}I'm am calling the function from a radio group change event tha...