$(document).ready(function() {
$('input.mode_choice').click(function() {
var id = $(this).val();
$('.create_form_wrapper').removeClass('current_form');
$('div#form_'+id).addClass('current_form');
}); 
});
