Just change your control source on you'r form to point to a query/view. (propeteries of the form)
It depends on what you have in you'r combobox. I use year to navigate by so I have the following choices in my combobox.
[2000]
[2001]
[2002]
[2003]
And I've set the default value of it to be [2003] by using Year(Date()).
So what I do in my query is to set year = frm_Form!YearCombobox
As for you.. I think you would like to navigate by yearid, since it's the natural key I assume?
Just create a combobox with both fields in [yearid, year description] and then hide yearid by setting width to 0 in that combobox. This way you would still get hold of it from the query/view, but users would not see it. Only see the year description.
I'm going away for the rest of the day, but I can answer any other questions tomorrow. Anyway, hope this helps.
~am()