function check_required(which, lifestyle) 
{

	if(document.images) 
	{

		for(i=0; i < which.length; i++) 
		{

			var tempobj=which.elements[i];

			if(tempobj.name == 'lifestyle') 
			{

				if (tempobj.value == '' || tempobj.value.substr(0,1) == '____________________') 
				{
					  
					  alert('Please select the lifestyle you are placing your add for.');
					  
					  return false;
					  
					  break;
					
				}
				
			}
			
			if(tempobj.name == 'country')
			{
			
				if (tempobj.value == '' || tempobj.value.substr(0,1) == '____________________') 
				{

					  alert('Please select the country of your lifestyle.');

					  return false;

					  break;

				}
							
			}
			
			if(tempobj.name == 'region') 
			{
			
				if (tempobj.value == '' || tempobj.value.substr(0,1) == '____________________') 
				{

					  alert('Please select the region of your lifestyle.');

					  return false;

					  break;

				}
							
			}

			if(tempobj.name == 'marina') 
			{
			
				if (tempobj.value == '' || tempobj.value.substr(0,1) == '____________________') 
				{

					  alert('Please select the marina of your lifestyle.');

					  return false;

					  break;

				}
							
			}

			if(tempobj.name == 'property_category' || tempobj.name == 'yachting_category' || tempobj.name == 'other_category') 
			{
			
				if (tempobj.value == '' || tempobj.value.substr(0,1) == '____________________') 
				{

					  alert('Please select the category of your lifestyle.');

					  return false;

					  break;

				}
							
			}


		}
		
	}
	
}
