function getCamsOnlineFree(){
    var theOCSrc = '/PHP/camonline.php';
    var myOCData = 'selctor=free';

    $.ajax({
         type: "GET",
         async: true,
         url: theOCSrc,
         data: myOCData,
         success: function(data){
            $('#fndCamsOnline').html(data);
          }
     });
}
$(function() {
  getCamsOnlineFree();
});

