You could always select all the items within the list using a bit of javascript upon submitting the form.
Something like:
function SelectAll(SourceList) {
for (var i=0; i<SourceList.options.length; i++) {
SourceList.options[i].selected = true;
}
}
The function should be executed upon the form submit event:
<input type="submit" value="Submit" name="updatebutton" onclick="javascript: SelectAll(MyListBox);">
I haven't tried it, but it should work.
BB