Can someone help me with a script to search the companies.xml file below and display search results on the listview in the home.html?

Can someone help me with a script to search the companies.xml file below and display search results on the listview in the home.html?

home.html
  1. <html>
  2. <head>
  3. <title>mysearch</title>
  4. </head>
  5. <body>
  6. <input type="search" id="search-mini" autocomplete="off" />
  7. <ul data-role = "listview" id=  "SearchResult"> </ul>
  8. </body>
  9. </html>
companies.xml
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <?xml-stylesheet type="text/css" href="xmlcss.css"?>
  3. <Companies xmlns:xlink="http://www.w3.org/1999/xlink">
  4.     
  5.     <Company  id='20151'>
  6.         <Title>Business Culture</Title>
  7.         <Image>images/logo.png</Image>
  8.         <Sector>Software Development</Sector>
  9.         <lbllocation>Location:</lbllocation>
  10.         <location>Tlokweng</location>
  11.         <lblPhone>Call: </lblPhone>
  12.         <Phone>+26774653048</Phone>
  13.         <lblEmail>Email:</lblEmail>
  14.         <molaetsa>slyvesterslim@gmail.com</molaetsa>
  15.         <lblFax>Fax: </lblFax>
  16.         <Fax>+267453909</Fax>
  17.         <lbladdress>Physical Address: </lbladdress>
  18.         <Address>Tlokweng, Diamond Inn, Unit 5</Address>
  19.     </Company>

  20.     <Company id='20152'>
  21.         <Title>CPAC PTY LTD</Title>
  22.         <Image>images/logo.png</Image>
  23.         <Sector>Technology</Sector>
  24.         <lbllocation>Location:</lbllocation>
  25.         <location>Gaborone</location>
  26.         <lblPhone>Call: </lblPhone>
  27.         <Phone>+26774653048</Phone>
  28.         <lblEmail>Email: </lblEmail>
  29.         <molaetsa>sales@cpac.com.bw</molaetsa>
  30.         <lblFax>Fax: </lblFax>
  31.         <Fax>+267453909</Fax>
  32.         <lbladdress>Physical Address: </lbladdress>
  33.         <Address>Village, Modisa Road, 21183</Address>
  34.     </Company>
  35.    </Companies>