
function reloadCategory(cat_id,cat_val){for(var i=cat_id;i<=3;i++){with(document.getElementById('cboCategory'+i)){if(options.length>0){for(var j=options.length;j>0;j--){options[j-1]=null;}
document.frmQuestion.hdSubCateg.value='1';}else{if(i==1)document.frmQuestion.hdSubCateg.value='0';}
style.display='none';}}
if(cat_val!=-1)sendRequest('/A_helpers/AJAX/request.php?section=cat&mode=get&cat_id='+cat_id+'&cat_val='+cat_val);}
function ajax_return_function(values){switch(values['requestsection']){case'cat':switch(values['requestmode']){case'get':if(values['sql_count']>0){with(document.getElementById('cboCategory'+values['cat_id'])){var new_element=document.createElement("option");new_element.text='';new_element.value='-1';document.getElementById('cboCategory'+values['cat_id']).options.add(new_element);new_element=null;for(i=0;i<values['sql_count'];i++){var new_element=document.createElement("option");new_element.text=values[i]['title'];new_element.value=values[i]['id'];document.getElementById('cboCategory'+values['cat_id']).options.add(new_element);new_element=null;}
document.getElementById('cboCategory'+values['cat_id']).style.display='block';document.getElementById('Orte'+values['cat_id']).style.display='block';}}
break;default:break;}
break;}}
