i make one assumption from your question which is, you want to select your test suites from button 1,2 and 3 in a browser.
so, the basic to your question is
1) you need to deploy your test NG container onto Servlet Container( ex.. Tomcat)
if you have already created a TestSuite using XML files, then follow this,
1A) in a servlet
tng = new TestNG();
List suites=Lists.newArrayList ();
suites.add("THIS IS A PATH TO YOUR XML FILE MUST BE SUPPLIED TO THE SERVLET FROM YOUR WEB PAGE CLICK OF A BUTTON ");
[[ EX : suites.add(request.getParameter("PathToXmlFileName"); this xml path should be supplied from HTML file ]]
and then
tng.setTestSuites(suites);
tng.run();
if you don't have physical XML files
2) create a synthetic or dynamic physical xml file using TestNG or XML DOM API given in Java respectively
i have given you the basic idea that you could start with.make use of Listeners given by TestNG which is more powerful and i have implemented Synthetic model which is more dynamic.