ok yes i do understand now the meaning of the UpperString... However, Im asking if you just please tell me the full code i need to wrap this issue up. In my project I dont need to write much JS and I dont have a lot of experience in JS. Therefore, I would greatly appreciate it if i can get a straight answer instead of back and forth stuff. Again, I will explain what i am doing...
I am loading a select menu on arrival of a certain page. I was successful in completing that task. The value = 'id' and the label = 'driver_name'
Now like you said I mapped already the 'id' to local storage (driver_id_list) as shown in the very 1st image in this posting. The only question i have regarding that is, the user will be selecting one of those id values from a list that populates a select menu. Therefore, the way I mapped it, doesn't that mean I'm storing the entire list of id's in local storage? If that is the case, the logical thing to do is store only one value (the value the user has selected from the select menu) or filter through that list to figure out which one the user selected. And now Im thinking that the way i mapped is either totally wrong or I can still use the mapping, but there must be some JS code to the that local storage element to only save just one value. That value must be what the user has selected from the select menu.
The next step in this process will be once the user has selected his choice of 'driver_name' along with any other info he types into that form, the user hits the submit load button. On click, all that info plus the selected driver_name will be sent (as a post) back to the server.
I have made a sincere effort to try to make this work without success. And like i said before, instead of just sending me a link this time, I would really appreciate someone telling exactly what i need to do including the full (not partial (The value = 'id' and the label = 'driver_name' )) code for any and all elements i need to attach it.