A family of Microsoft relational database management systems designed for ease of use.
As John says, you almost certainly should not store the Name in the output table, as this would introduce redundancy and the table would not be normalized to Third Normal Form (3NF) due to the transitive dependency of the Name column on the key. The table would consequently be open to the risk of update anomalies.
In your form set up a combo box bound to the foreign key ID column as follows:
ControlSource: ID
RowSource: SELECT ID, [Name] FROM [Master Table] ORDER BY [Name];
BoundColumn: 1
ColumnCount: 2
ColumnWidths: 0cm
If your units of measurement are imperial rather than metric Access will automatically convert the unit of the last one to inches. The important thing is that the dimension is zero to hide the first column.
If you are unfamiliar with the principles of Normalization you might like to take a look at Normalization.zip in my public databases folder at:
https://onedrive.live.com/?cid=44CC60D7FEA42912&id=44CC60D7FEA42912!169
Note that if you are using an earlier version of Access you might find that the colour of some form objects such as buttons shows incorrectly and you will need to amend the form design accordingly.
If you have difficulty opening the link, copy the link (NB, not the link location) and paste it into your browser's address bar.
BTW, I hope that Name is not the actual name of a column. As the name of a built in property in Access it is a reserved keyword, and should not be used as an object name.