Dependent dropdown choose stores the ID in the database instead of the value that i picked

When I submit a form with a dependent dropdown fields, it stores the ID in the database...
I want to store the value or text that I chose...
HOW I DO THAT?
please help

  Discussion posts and replies are publicly visible

Parents
  • Are you sure you want to store the text though? In general storing the ID will better support changes in the future - for instance, if you update the value, all the places that reference the ID will now immediately receive the new value. Plus, it's easier to do things like define relationships or reporting if you have more consistent data that references an ID.

Reply
  • Are you sure you want to store the text though? In general storing the ID will better support changes in the future - for instance, if you update the value, all the places that reference the ID will now immediately receive the new value. Plus, it's easier to do things like define relationships or reporting if you have more consistent data that references an ID.

Children