Calvin,
If you want to default values for a new record only, you can use the Default Value property of the combo box.
If you always want to default values you could write code such as the following:
Private Sub Form_Load()
Me!MyComboName = "Default value"
End Sub
Hope this helps,
Mickey