Genres in "Edit Tags"

Hey Sindre, is there a file I can edit to remove a bunch of genres I will never ever use and add the ones that I do use that aren't there? Thanks for any help 

sindre_mehus wrote:Sorry, no. Those genres are the ones that are supported by ID3v1.
Sindre
sindre_mehus wrote:No, you can set the genre to anything you like, also in Subsonic, but the combo box is populated with the genres that were defined in ID3v1 and can't be modified without changing Java source code and recompiling.
Sindre
<select name="genreAll" style="width:7em">
<option value=""/>
<c:forEach items="${model.allGenres}" var="genre">
<option ${genre eq model.defaultGenre ? "selected" : ""} value="${genre}">${genre}</option>
</c:forEach>
</select>
<select name="genreAll" style="width:7em">
<option value=""/>
<option value="Genre">Genre</option>
</select>
function setGenreTxt(){
var genre = dwr.util.getValue("genreAllTxt");
for (i=0; i<fileCount; i++) {
dwr.util.setValue("genre" + i, genre);
}
}
<input type="text" name="genreAllTxt" id="genreAllTxt" style="width:7em;" /> <a href="javascript:setGenreTxt()"
id="gatSubmit" name="gatSubmit"><fmt:message key="edittags.set"/></a><br>
<select name="genreAll" style="width:7em">
<option value=""/>
<c:forEach items="${model.allGenres}" var="genre">
<option ${genre eq model.defaultGenre ? "selected" : ""} value="${genre}">${genre}</option>
</c:forEach>
</select>