I want to change the form action based on a selection value.
Hi Guys,
Add this to your select:
onchange="changeAction(this)"
and this to your javascript
changeAction = function(select){ document.getElementById("store").action = select.value; }