function show_basic_fee_price()
{
	// !!!!! MUST BE CHANGED, when adding new Services
	var free_song_upload_package_exists = false;
	var free_hosting_package_exists = false;
	
	var radios_count = document.services_order_form.service_song_upload.length;
	for(var i=0;i<radios_count;i++)
	{
		if(document.services_order_form.service_song_upload[i].checked)
		{
			if(document.services_order_form.service_song_upload[i].value == '0')
			{
				free_song_upload_package_exists = true;
			}
		}
	}
	
	radios_count = document.services_order_form.service_hosting.length;
	for(var i=0;i<radios_count;i++)
	{
		if(document.services_order_form.service_hosting[i].checked)
		{
			if(document.services_order_form.service_hosting[i].value == '0')
			{
				free_hosting_package_exists = true;
			}
		}
	}


	if(free_song_upload_package_exists 
		&& free_hosting_package_exists
		&& document.services_order_form.exist_other_subscribed_service.value == '0')
	{
		document.services_order_form.basic_fee_price.value = "0.00";
	}
	else
	{
		document.services_order_form.basic_fee_price.value = "4.00";
	}
	
}

function check_changes()
{

	var doc = document.services_order_form;
	
	var song_upload_no_changes = false;
	var hosting_no_changes = false;
	
	var radios_count = document.services_order_form.service_song_upload.length;
	var sel_index = doc.song_upload_activate.selectedIndex;
	
	for(var i=0;i<radios_count;i++)
	{
		if(doc.service_song_upload[i].checked)
		{
			if(doc.service_song_upload[i].value == doc.song_upload_original_checked.value &&
				doc.song_upload_activate.options[sel_index].value == doc.song_upload_original_activate.value )
			{
				song_upload_no_changes = true;
			}
		}
	}
	
	
	radios_count = document.services_order_form.service_hosting.length;
	sel_index = doc.hosting_activate.selectedIndex;
	for(var i=0;i<radios_count;i++)
	{
		if(doc.service_hosting[i].checked)
		{
			if(doc.service_hosting[i].value == doc.hosting_original_checked.value &&
				doc.hosting_activate.options[sel_index].value == doc.hosting_original_activate.value )
			{
				hosting_no_changes = true;
			}
		}
	}

	
	if(song_upload_no_changes && hosting_no_changes)
	{
			  alert('You must change some of your settings before continue !');
			  return false;
	}
	else
		return true;


}