When a user selects a book in the dropdown list above, a function calledBook information will be listed here...
showBook as below is executed. 
The showBook function does the following:
XMLHttpRequest object.
 q) with the content of the dropdown list is added to the URL.
 
    
function showBook( str ) {
  if ( str == "" ) {
    document.getElementById("txtHint").innerHTML = "";
    return;
  }
  if ( window.XMLHttpRequest ) {
    // code for IE7+, Firefox, Chrome, Opera, Safari
    xmlhttp = new XMLHttpRequest( );
  }
  else {
    // code for IE6, IE5
    xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  }
  xmlhttp.onreadystatechange = function( ) {
    if ( ( xmlhttp.readyState == 4 ) && 
         ( xmlhttp.status     == 200 ) ) {
      document.getElementById("txtHint").innerHTML = 
        xmlhttp.responseText;
    }
  }
  xmlhttp.open( "GET", "GetBook.php?q="+str, true );
  xmlhttp.send( );
}
    
    | 
  
| 
          
     Two cannibals are eating a clown,      and one looks at the other and says, Does this taste funny to you? — Joe Mande, quoting his Dad  |