$(document).ready(function() {
  $('div#rightprofile input.website').live('keyup', function() {
    if($(this).val().length > 12)
      $(this).removeClass('website').after('<input type="text" name="website[]" value="" class="text website" />');
  });
});