Index: /applications/editors/josm/plugins/reltoolbox/build.xml
===================================================================
--- /applications/editors/josm/plugins/reltoolbox/build.xml	(revision 28719)
+++ /applications/editors/josm/plugins/reltoolbox/build.xml	(revision 28720)
@@ -30,5 +30,5 @@
 <project name="reltoolbox" default="dist" basedir=".">
     <!-- enter the SVN commit message -->
-    <property name="commit.message" value="RelToolbox: update validations for associatedStreet"/>
+    <property name="commit.message" value="RelToolbox: update validations for boundary fixer - label role"/>
     <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
     <property name="plugin.main.version" value="5018"/>
Index: /applications/editors/josm/plugins/reltoolbox/src/relcontext/relationfix/BoundaryFixer.java
===================================================================
--- /applications/editors/josm/plugins/reltoolbox/src/relcontext/relationfix/BoundaryFixer.java	(revision 28719)
+++ /applications/editors/josm/plugins/reltoolbox/src/relcontext/relationfix/BoundaryFixer.java	(revision 28720)
@@ -78,7 +78,13 @@
                 Node n = (Node)m.getMember();
                 if( !n.isIncomplete() ) {
-                    if( n.hasKey("place") )
-                        role = "admin_centre";
-                    else
+                    if( n.hasKey("place") ) {
+                        String place = n.get("place");
+                        if (place.equals("state") || place.equals("country") ||
+                                place.equals("county") || place.equals("region")) {
+                            role = "label";
+                        } else {
+                            role = "admin_centre";
+                        }
+                    } else
                         role = "label";
                 }
