Sherri
|
| Posted: 12/20/2004, 7:12 AM |
|
Here's what I'd like to do:
I have a record form, with three fields:
PollID
VoterLocation
VoterUnique
The PollID is already pre-filled from the database.
The user will select VoterLocation from a drop-down list.
Once the drop-down selection is made, I want the VoterUnique to display a string with both fields (PollID and VoterLocation) combined.
Example:
PollID = 5
VoterLocation = TN
VoterUnique should display = 5TN
Any help is greatly appreciated.
Thanks!
|
|
|
 |
Ozum
Posts: 57
|
| Posted: 12/30/2004, 2:31 PM |
|
Give all them ID's. PollID, VoterLocation and VoterUnique
Put this into drop down selection tag of VoterLocation
onChange="document.getElementById('VoterUnique').value = document.getElementById('PollID').value + document.getElementById('VoterLocation').value"
|
 |
 |
|