You could probably use an Input mask and Validation, but I prefer to use the Before Update event 'cos it gives more control...eg:
If Not Right(Me![Text1], 5) = "I" Then
MsgBox "Put the right information in you dozy $%^&!"
DoCmd.CancelEvent
End If