// update search box

function xAjaxUpdateSearchBox(respn){
//  alert(respn);
  var b='<select name="select" class="bsel_box" onchange="return xAjaxReplacePage(this.value)">' + respn + '</select>';
  var opt= document.getElementById("cselectbox");
   opt.innerHTML=b;
   return true;
} // xAjaxUpdateSearchBox

function xAjaxReplacePage(z){
  var sel= document.getElementById("dsearchbox1");
  var x=sel.value==1?"p-general_series":"p-application";
  var v=location.href.replace(/p-(.*)/i, x)+ '/y-' + z;
//  alert(v);
  location.href=v;
  
  return true;
}
