How do you change the current value of a text field with the class .form-item to "555-1212"?
.form-item
$('.form-item').set('value', '555-1212');
$('.form-item').val('555-1212');
$('.form-item').data('value', '555-1212');
$.val('.form-item', '555-1212');