Do a search for strCountry, it will be used in an IF like this :
if strCountry = "1" and trim(Member_Country) <> "" then
Response.Write .....
end if
Response.Write .....
Simply move that last Response.Write line before the IF like this :
Response.Write .....
if strCountry = "1" and trim(Member_Country) <> "" then
Response.Write .....
end if