$(function()
{
	$('#ContactRegion').change(picturesInfoRegionChange)
	picturesInfoRegionChange()
})
function picturesInfoRegionChange()
{
	if($('#ContactRegion').val()==0)
	{
		$('#ContactRegionOther').parent().show()
	}
	else
	{
		$('#ContactRegionOther').parent().hide()
	}
}
