I have a custom post type ('Model') for a sports modelling agency, and it requires the model to enter sports they are competent at, and also rank their ability from 1 to 5. For example, given the information:
Model: Joe Soap.
Football: 4.
Archery: 2
I would store this in the custom_post_type 'model' with the fields:
Model Name: Joe Soap.
Sports: Football, Archery (taxonomy).
Rank: 4, 2.
How do I associate 4 with Football and 2 with Archery using a metabox, where different models may have different sports in their lists ?

$rank[sports_taxonomy_term][rank_value]– One Trick Pony Jan 11 '11 at 20:41