A family of Microsoft relational database management systems designed for ease of use.
One thing to keep in mind when designing and developing a relational database application using Access is that you are creating a custom application from the basic tools, not following a template with pre-existing functions defined and implemented for you. That said, there are, indeed, many things about Access which are, or can be, somewhat automatic. The latter includes, for example, the automatic saving of a record when you close a form to which that table is bound.
One of the tricks to becoming an adept Access developer is learning which things are going to be more or less automatic and which things you have to implement via code or other tools.
Here, it sounds like you missed the fact that you must tell Access what action you want to occur in this combo box. Access takes care of providing the events you can use, but it's on you to actually specify what happens in those events.
Multiply that over and over throughout the relational database application, and you'll eventually become comfortable making things happen the way you require.