RE: How to map a capture form dropdown to a text field on the contact?
Your second idea was far less impactful.. Off the idea threw togaether this little script...
<script>
function addHiddenField(){
form = document.querySelector("form");
plain_country = document.createElement("input");
plain_country.type = "hidden"
plain_country.name = "plain_country";
plain_country.id = "plain_country";
form.appendChild(plain_country);
selectlist = document.getElementById("country");
selectlist.onchange = function() {plain_country.value = selectlist.value;};
}
window.onload = function() {
addHiddenField();
};
</script>
Works great, thanks for the suggestion.