function other(value)
{
if (value == 'OtherSource')
 {
   document.getElementById('other_source').style.display="";
  }
  else
  {
    document.getElementById('other_source').style.display="none";
  }
}
function othercountry(value)
{
if (value == 'OtherCountry' )
 {
   document.getElementById('other_country').style.display="";
  }
  else
  {
    document.getElementById('other_country').style.display="none";
  }
}

function othercity(value)
{
if (value == 'OtherCity')
 {
   document.getElementById('other_city').style.display="";
  }
  else
  {
    document.getElementById('other_city').style.display="none";
  }
}

function otherq(value)
{
if (value == 'OtherQualification')
 {
   document.getElementById('other_qualification').style.display="";
  }
  else
  {
    document.getElementById('other_qualification').style.display="none";
  }
}

/***************** DOMAIN 
************/
function otherdomainitil(value)
{
if (value == 'OtherDomainitil')
 {
   document.getElementById('other_domain_itil').style.display="";
  }
  else
  {
    document.getElementById('other_domain_itil').style.display="none";
  }
}
function otherdomaincobit(value)
{
if (value == 'OtherDomaincobit')
 {
   document.getElementById('other_domain_cobit').style.display="";
  }
  else
  {
    document.getElementById('other_domain_cobit').style.display="none";
  }
}
function otherdomainiso(value)
{
if (value == 'OtherDomainiso')
 {
   document.getElementById('other_domain_iso').style.display="";
  }
  else
  {
    document.getElementById('other_domain_iso').style.display="none";
  }
}
function otherdomainpmi(value)
{
if (value == 'OtherDomainpmi')
 {
   document.getElementById('other_domain_pmi').style.display="";
  }
  else
  {
    document.getElementById('other_domain_pmi').style.display="none";
  }
}
function otherdomainsix(value)
{
if (value == 'OtherDomainsixsigma')
 {
   document.getElementById('other_domain_six_sigma').style.display="";
  }
  else
  {
    document.getElementById('other_domain_six_sigma').style.display="none";
  }
}

function otherdomain(value)
{
if (value == 'OtherDomain')
 {
   document.getElementById('other_domain').style.display="";
  }
  else
  {
    document.getElementById('other_domain').style.display="none";
  }
}

function button_hide()
{
  document.form1.button.disabled=true;
  if(document.form1.chk1.checked==true)
  {
    document.form1.button.disabled=false;
  }
  if(document.form1.chk1.checked==false)
  {
    document.form1.button.enabled=false;
  }
}