I will explain my problem.
I have a select with multiple options, and one (or more) input. I would like this (these) input are used to give me an additional value to my options.
So, i want with a single input to give an additional value for each option, and that this be kept in memory (without database ^^).
Do you understand ?? Any idea ? Ty !
Edit :
For example :
<select>
<option>1</option>
<option>2</option>
<option>3</option>
</select>
<input type="text" />
I chose option 1 and i set in my input "ok".
I chose option 3 and i set in my input "test".
if i re-chose option 1 i found my value "ok".
Edit 2 : inputs will be a kind of configuration for my options. Each option can have 1 or more input more. An input can have 80 different values, if I have 80 options.