Ok, now you're talking. How about:
Private Sub cboN_Number_AfterUpdate()
Me.cboM_Tach.RowSource = "SELECT M_tach FROM qryTblAircraft WHERE N_number =" & Me.cboN_Number & " ORDER BY m_tach;"
End Sub
This will populate combo cboM_Tach with all occurences of M_tach where N_number is the same as the one selected in cboN_Number. Now if there's always only 1 M_tach for a given N_number there is no need for a combo for M_tach, since there's only 1 option to be selcted from. Just a textbox would do, in that case. In this 1 on 1 scenario u might even add M_tach as a second column in the N_number combo, and will show up alongside the N_number (u have to adjust the combo properties of course: number of columns, column width etc.).
HTH