$(function() { // Fairly quick and easy way to make this select box editable. Good enough. $("#CustomerPaymentTermsOptions").live('change', function(data) { selectedOption = $("#CustomerPaymentTermsOptions").val(); $("#CustomerPaymentTerms").val(selectedOption); console.log(selectedOption); }); });