$(function() {
    $('input[name=user_type]').click(function() {
        $('div.formFieldsHidden').hide();
        $('div.formFieldsHidden').filter('.' + $('input[name=user_type]:checked').val()).show();
    });
    $('select[name=activity_type]').change(function() {
        if ($(this).val() == '99')
            $('input[name=activity_type_alt]').parent().show();
        else
            $('input[name=activity_type_alt]').parent().hide();
    });
});
$('div.formFieldsHidden').hide();
if ($('span.regionsList').find('select').length == 0)
    $.getJSON(HTTP_ADDRESS+'/region/regionslist/type/json', function(data) {
        if (data.regions.length > 0) {
            var html = '<select name="region" class="text required  ui-widget-content ui-corner-all">';
            for (var i = 0; i < data.regions.length; i++) {
                html += '<option value="' + data.regions[i].val + '">' + data.regions[i].label + '</option>';
            }
            html += '</select>';
            $('span.regionsList').append(html);
        }
    });
