$(document).ready(function() {
    $("select#tx-srfeuserregister-pi1-usergroup")
        .hide()
        .children()
        .insertAfter("select#tx-srfeuserregister-pi1-usergroup")
        .each(function () {
            $(this).replaceWith("<div class=\"radio\"><input type=\"radio\" name=\"FE[fe_users][usergroup]\" value=\"" + $(this).val() + "\" />" + $(this).text() + "</div>");
        });
    // validate
    if ($("h4").text() == "Mitglied werden") {
    	$(".tx-srfeuserregister-pi1-submit").click(function() {
    		var inputChecked = $(":checked");
    		if (inputChecked.length <= 0) {
    			alert("Bitte w√§hlen Sie eine Mitgliedsform aus!");
    			return false;
    		}
    		//console.log(inputChecked);
			//return false;
		});
    }
 });
