Computed Value - Javascript

I have a Computed Value and it’s name is “I_Pick”.

How would I be able to reference this value and place it into another field(Hidden) ?

Would this code be placed into the onChange or some other event ?

Subject: Solution

Within the HTML I added the following:

onBlur=“window.document.forms[0].I_Pick.value=window.document.forms[0].calPick.value”

It works.