This is what worked for me on a SelectField:
form.myfield.default = '1'
form.process()
I'm guessing you can just assign a list to form.myfield.default for a SelectMultipleField. The key, though, seems to be calling the process method on the form after you assign to default.