document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. $(\'#btnAdd\').click(function() {
  2.     var newBook = $(\'#txtNewBook\').val();
  3.     var selectsBook = $(\'#selectsBook\').append(new Option(newBook, newBook));
  4. })
');