I'm having a problem copying the value of a text field and adding that value along with the value of a dropdown to a text area. when I click the button I can get the values from dropdowns to copy over but when i try and copy a dropdown value and a textfield value it won't work and I get an 'Uncaught TypeError: Cannot read property 'undefined' of undefined. Any suggestions?
<script type="text/javascript">
function copy() {
var a = document.getElementById("qty");
var b = document.getElementById("text-two");
var text = a.options[a.selectedIndex].value + "---" + b.options[b.selectedIndex].value;
var out = document.getElementById("textarea");
out.value += text + "\n";
}
</script>