


//show/hide forms

$(document).ready(function(){
    $('#box1').hide();
    $('#box2').hide();
    $("#thechoices").change(function(){
		reload_dd();
		$("#" + this.value).show().siblings().hide();
    });
	$("#thechoices").change();
});










