Your first combo box should be any record in your table that does not have a parent_ID
Code:
SELECT * FROM table WHERE isnull(Parent_ID)
Your first combo box should list only those records associated with the items in your first comb box
Code:
SELECT * FROM table WHERE Parent_ID = [Forms]![FormName]![Parent_ID]
In the ON EXIT property of your first combo box (Parent_ID field) have this code:
ChildField.requery
Where childfield is the name of the field that is going to store the model of car.
By the way this is called 'cascading combo boxes' there are a bazillion examples out there (including this forum) if you're looking for the proper terminology.