";
jQuery("#textarea_listing_remaining").html("
" + text_max + " characters remaining." + listing_inst);
jQuery("#listing_description").keyup(function() {
var text_length = jQuery("#listing_description").val().length;
var text_remaining = text_max - text_length;
jQuery("#textarea_listing_remaining").html("
" + text_remaining + " characters remaining." + listing_inst);
});
});