function getCities(countryID, actionFile)
{	
	/** Get ID of selected  country from drop down menu
		Display it in action file to be able to get city belonged to that country
		@param countryID: ID of selected country
		@param actionFile: page which will display after selecting country
		go to actionFile and country ID in URL
	*/
	
	window.location.href = actionFile + '?counID='+ countryID.value;	
}

function gotoPage(actionFile)
{
	/** Go back to previous page if user do not want to delete chosen item
	*/
	window.location.href = actionFile;	
}