function ActionDeterminator(type, section)
{
    if(type == 'giver'){
        obj = $('#cityNameGiver');
        selectId = 'oras_giver';
        
    } else {
        obj = $('#cityName');
        selectId = 'oras';
    }
    var oras = $('#'+selectId).val();
    oras = ucwords(oras);
    oras = oras.replace(" ", '-');
    $(obj).attr('href' , 'http://cautainfirmiera.ro/'+section+'/'+section+'-'+oras);

}

function ucwords(str) {
		
   str = str.toLowerCase();	

   return (str + '').replace(/^(.)|\s(.)/g, function ($1) {
        return $1.toUpperCase();    
   });
}


