// ==UserScript==
// @name           LJSupport: Dropdown Thingum
// @namespace      http://afunamatata.com/greasemonkey/
// @description    Reverse behavior of text in category select dropdown
// @include        http://www.livejournal.com/support/see_request.bml?id=*
// @tags           ljsupport
// ==/UserScript==

// title no good, desc no good, code no good, oh dear

changeCat = document.getElementsByName("changecat")[0];
if(changeCat != null)
{
    originalCat =changeCat.childNodes[1].textContent;
    
    for(i in changeCat.childNodes) { 
        cat = changeCat.childNodes[i]; 
        if(cat.nodeType == 1) 
        {
            cat.textContent = cat.textContent.substring(5);
        } 
    }
    
    changeCat.childNodes[1].textContent = "["+originalCat
}
