How can I refactor this redundant code?
$("#txtShippingAddressFullName").change(function () {
$("#txtBillingAddressFullName").val($(this).val());
})
$("#txtShippingAddress").change(function () {
$("#txtBillingAddress").val($(this).val());
})
$("#txtShippingPostalCode").change(function () {
$("#txtBillingPostalCode").val($(this).val());
})
$("#txtShippingPhoneNumber").change(function () {
$("#txtBillingPhoneNumber").val($(this).val());
})
$("#ddlShippingCity").change(function () {
$("#ddlBillingCity").val($(this).val());
})