function validation_cate()
{
		//ddl=document.getElementById('ddlCategoryin1');	
		for (i = 0; i < document.getElementById('ddlCategoryin1').options.length; i++) {
		document.getElementById('ddlCategoryin1').options[i].selected =true;
		}
		//ddl=document.getElementById('ddlNeedin1');	
		for (i = 0; i < document.getElementById('ddlNeedin1').options.length; i++) {
		document.getElementById('ddlNeedin1').options[i].selected =true;
		}		
	return true;
}

/*function val_radio()
{
	if((document.search_category.needy_cat.checked==true) || (document.search_category.donator_cat.checked==true))
	{
		document.getElementById('radioError_cat').innerHTML="";
	}
}*/
function clear_span(span_id)
{	
	document.getElementById(span_id).innerHTML="";		
}

function validation_location()
{
	if(document.getElementById('ddlCountry00').selectedIndex == 0)
	{
		document.getElementById('countryError').innerHTML="Please select the country";	
		return false;
	}
	return true;
}

function validation_volunteer()
{
	if(document.getElementById('ddlCountry01').selectedIndex == 0)
	{
		document.getElementById('countryError1').innerHTML="Please select the country";	
		return false;
	}
	return true;
}