<?php
///////////////////////////////////////////////////////////////////////////////////////////
///Script PHP/MYSQL of management of classifieds ads developed by Script PAG
///Script PAG all rights reserved. Use under license. http://www.script-pag.com
///////////////////////////////////////////////////////////////////////////////////////////

############################################################

require_once __DIR__.'/../all_fns.php';

pool::execute('beforestart');

if(isset($_POST['region']) && isset($_POST['counties']))
{
	$region = $_POST['region'];
	$counties = $_POST['counties'];
	
	$result = get_localisation_ids($region, $counties);
	
	echo $result;
}
else echo 0;
