I am trying to get the value in the #place input and keep it in that input but have the fax number go into the #fax input? Is it possible to get both values and drop them into
try using jquery attr value
$(document).on('change', '#place', function () { $("#fax").val($("#places option[value='" + $("#place").val() + "']").attr("label")); });