Thanks Marc! I think that you are right. I'm using javascript to retrieve data from the webserver, which I add to an auto-suggest dropdown list. It appears that I'm retrieving the administrative division but why am I also getting populated place?
Code:
label: item.name + (item.adminName1 ? ", " + item.adminName1 : "") + ", " + item.countryName,
value: item.name + (item.adminName1 ? ", " + item.adminName1 : "") + ", " + item.countryName,
edit: I'm also using feature class P because I want just to retrieve cities or towns. Is it possible to omit popular places or administrative division to get just one?