<%
String country = request.getParameter("country_h");
String region = request.getParameter("region_h");
if (country != null && !country.trim().isEmpty()) {
%>
You have selected:
Country Name: <% out.print(country); %>
Region Name: <% out.print(region); %>
<%
} else {
%>